home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / NoClassDefFoundError.java < prev    next >
Text File  |  1998-09-22  |  2KB  |  53 lines

  1. /*
  2.  * @(#)NoClassDefFoundError.java    1.13 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.lang;
  16.  
  17. /**
  18.  * Thrown if the Java Virtual Machine or a classloader tries to load 
  19.  * in the definition of a class (as part of a normal method call or 
  20.  * as part of creating a new instance using the <code>new</code> 
  21.  * expression) and no definition of the class could be found. 
  22.  * <p>
  23.  * The searched-for class definition existed when the currently 
  24.  * executing class was compiled, but the definition can no longer be 
  25.  * found. 
  26.  *
  27.  * @author  unascribed
  28.  * @version 1.13, 07/01/98
  29.  * @since   JDK1.0
  30.  */
  31. public
  32. class NoClassDefFoundError extends LinkageError {
  33.     /**
  34.      * Constructs a <code>NoClassDefFoundError</code> with no detail message.
  35.      *
  36.      * @since   JDK1.0
  37.      */
  38.     public NoClassDefFoundError() {
  39.     super();
  40.     }
  41.  
  42.     /**
  43.      * Constructs a <code>NoClassDefFoundError</code> with the specified 
  44.      * detail message. 
  45.      *
  46.      * @param   s   the detail message.
  47.      * @since   JDK1.0
  48.      */
  49.     public NoClassDefFoundError(String s) {
  50.     super(s);
  51.     }
  52. }
  53.